home *** CD-ROM | disk | FTP | other *** search
/ Champak 123 / (Vol 123) Jan 13 2011.iso / Games / hand_jibe.swf / scripts / DefineSprite_78 / frame_56 / DoAction.as
Text File  |  2011-01-13  |  256b  |  15 lines

  1. if(starttime == undefined)
  2. {
  3.    starttime = getTimer();
  4.    delaySeconds = 9;
  5.    gotoAndPlay(_currentframe - 1);
  6. }
  7. else if(getTimer() - starttime < delaySeconds * 1000)
  8. {
  9.    gotoAndPlay(_currentframe - 1);
  10. }
  11. else
  12. {
  13.    starttime = undefined;
  14. }
  15.